/*通用样式表*/
body, td, div{
	font:14px/24px 'Microsoft YaHei', 'Lantinghei SC', 'Open Sans', Arial, 'Hiragino Sans GB', 'WenQuanYi Micro Hei', SimSun, sans-serif; 
	color:#333;	margin:0; padding:0;  
}
h1, h2, h3, h4, h5, h6{font-weight: normal;}
h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, form{margin: 0; padding:0;}
ul, ol{list-style:none;}
li{list-style-type:none;;}
img{border:0px;}
p{margin: 0; padding: 0;}

a{
	color:#333; text-decoration: none;}

input,button,textarea{outline:none;}

html{overflow-x:hidden; overflow:-moz-scrollbars-vertical; -webkit-text-size-adjust:none;}
body{background:#fff;}
.clear{clear:both; width:100%; *display:inline;}



.pull-left{float: left;}
.pull-right{float: right;}



/*effect*/
.effect{
	overflow: hidden; position: relative; text-align: center;}
.effect img {
   	width: 100%; display: block; 
   	position: relative; opacity:1;
   	-moz-transform:scale(1,1);
   	-webkit-transform:scale(1,1);
   	-o-transform:scale(1,1);
   	-ms-transform:scale(1,1);
   	transform:scale(1,1);
   	-webkit-transition: all 0.2s ease-in;
   	-moz-transition: all 0.2s ease-in;
   	-o-transition: all 0.2s ease-in;
   	-ms-transition: all 0.2s ease-in;
   	transition: all 0.2s ease-in;}
.effect:hover img {
  	opacity:1;
   	-moz-transform:scale(1.05,1.05);
   	-webkit-transform:scale(1.05,1.05);
  	-o-transform:scale(1.05,1.05);
   	-ms-transform:scale(1.05,1.05);
   	transform:scale(1.05,1.05);}